home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
fg
/
fgl402e
/
expas.arj
/
TEMP
/
15-06.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-01-20
|
522b
|
20 lines
program main;
uses fgmain, fgmisc;
begin
fg_initpm;
fg_musicb('T150 L8 EDCDEEE P DDD P EGG P EDCDEEE L16 P L8 EDDEDC$',1);
while (fg_playing = 1) do
writeln('Mary Had a Little Lamb...');
fg_waitfor(18);
fg_musicb('L16 CC#DD#EFF#GG#AA#B O+$',2);
while (fg_playing = 1) do
writeln('up the scale in two octaves...');
fg_waitfor(18);
fg_musicb('T180 O2 L2 P L8 P GGG L2 D# L24 P L8 P FFF L2 D$',1);
while (fg_playing = 1) do
writeln('Beethoven''s Fifth Symphony...');
end.